home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / term / trms20c.lha / History.txt < prev    next >
Text File  |  1993-10-07  |  13KB  |  329 lines

  1. History file
  2. ------------
  3.    The contents of this file contains bugfix lists, changes and
  4. additions to each maintenance release of Terminus 2.0.  Everything
  5. discussed here will be merged in the user manual as well for the
  6. full distribution archive.
  7.  
  8.  
  9. Terminus 2.0c
  10. -------------
  11.    Due to the leak of a 2.0b beta this release has been bumped to
  12. 2.0c.
  13.  
  14.    2.0c is also the first release that has been shipped to registered
  15. users.  A serialized keyfile (displayed at startup and printed on the
  16. disk label) is included with the registered distribution disk so that
  17. you can download updates to Terminus locally.  The keyfile must be
  18. located in the TERMINUS: volume.
  19.  
  20.    The following bugfixes, changes, additions and deletions to the
  21. executable have also been merged to the user manual included with
  22. this distribution.
  23.  
  24.  
  25. Bug fixes
  26. ---------
  27. - Beefed up syntax checking for DISPLAY command.
  28. - Fixed guru on exit bug that some systems were getting.
  29. - Fixed #4 guru on startup due to text overscan being larger than Workbench.
  30. - Status line gadgets for CRXLATE, LFXLATE and EOLOUT now working correctly.
  31. - The macro escape !% no longer sends the '%' character.
  32. - VT emulations should no longer reset columns to 80 anymore.
  33. - WAIT from ARexx would cause the next command to fail, fixed.
  34. - TPEN, BPEN and CPEN variables were returning incorrect values.
  35. - Read-only variables were not being passed to ARexx.
  36. - Entry editor no longer deletes macros after editing.
  37. - '~' delay character in fkey macros now works.
  38. - [MISC][QUIET SERIAL?] menu item now updated after iconifying.
  39. - Now clips last column properly with 1.x and 2.x releases.
  40. - Repeat search now advances to next match on last line properly.
  41. - Selecting Ignore in a string or integer requester restores fast cursor.
  42. - Removed 'R' character from CIS B+ file transfers.
  43. - Kermit XPR transfers should be working now.
  44. - IF/ELSE checking no longer gets confused with multi-line comments.
  45. - QUIET mode for the INPUT script command is now reset properly.
  46. - Dialer should now be insensitive to parity.
  47. - CALL and CHAIN script commands working again.
  48. - Fixed some enforcer hits when canceling file requester in console.
  49. - Script SEND command now handles read-only string variables.
  50. - QUIET command line option (and tooltype) working again.
  51. - CURPALETTE loads palette colors now.
  52. - Dialer is now idled if OwnDevUnit requests the port in use.
  53. - WINPOS updating no longer occurs after loading a new .con file.
  54. - Using <DEL> to remove a selected entry now dials next entry.
  55. - Chat mode restored properly after uninconifying.
  56. - Keymap string gadget now updated when loading a console definition.
  57. - VT-xx emulations no longer guru when used with less than 24 lines.
  58. - Screen title properly restored after system requesters are posted.
  59. - ANSI index properly handles colors in 8-15 range now.
  60. - SGR color selection with the MONO palette now limited to colors 0-3.
  61. - ZMODEM rename option now overrides resume properly.
  62. - Deleting entries at the end of the phonebook no longer leave garbage.
  63. - Clipping from the main display highlights the last character properly.
  64. - Terminus now waits for OwnDevUnit to return before completing startup.
  65. - Reduced ZMODEM window size to 32k max to fix ZMODEM download lockups.
  66. - Number dial handles a blank entry properly now.
  67. - No longer locks up when searching prior to opening review buffer.
  68. - Y/ZMODEM downloads now do an auto-rename if target is a directory.
  69. - Now trims trialing '/' characters in paths requester.
  70. - EXISTS() script command now returns FALSE for NULL and directories.
  71.  
  72.  
  73. WATCHDOG command
  74. ----------------
  75.    A new script command has been added that monitors keyboard idle time.
  76.  
  77.    The synrax is:
  78.       WATCHDOG OFF | num1, num2
  79.  
  80.       The first value, <num1> sets the timeout in seconds that the watch
  81.    dog timer will wait for the keyboard to be idle before sending the
  82.    character defined by <num2> (which can range from 0 through 255).
  83.  
  84.       The timer is reset everytime a key that transmits a character is
  85.    pressed.  When a timeout condition is reached the character defined 
  86.    will be sent and the timer will be reset again.
  87.  
  88.       This command operates outside the context of a script.  Once set, it
  89.    will continue to run until carrier is lost, although carrier does not
  90.    need to be present for it to be initialized.
  91.  
  92.  
  93. NOQUICK option
  94. --------------
  95.    This option variable has been added due to the problems with
  96. dnet.device (or any other serial device replacement) that does not
  97. properly handle the IOF_QUICK bit when used with BeginIO() during
  98. a CMD_READ request.
  99.  
  100.    As per the RKM documentation for the serial.device, if a CMD_READ
  101. is called via BeginIO() with the IOF_QUICK bit set, the device is to
  102. return the request immediately with the bit still set if it was able
  103. to read the desired number of bytes immediately from the internal
  104. buffer of the device.
  105.  
  106.    Unfortunately, some devices always queue a request when BeginIO() is
  107. called even though the proviso for the serial.device states otherwise.
  108.  
  109.    If you're using dnet.device you should turn this option on via a
  110. script command of:
  111.  
  112.       NOQUICK = TRUE
  113.  
  114.  
  115. Chat mode
  116. ---------
  117.    Changed chat mode to only recognize '^' escape character for queued
  118. control characters now.
  119.  
  120.  
  121. VT-220
  122. ------
  123.    More additions to the keyboard with this release.
  124.  
  125.    <CTRL> / sends a ^_ character.
  126.  
  127.  
  128. Cursor keys
  129. -----------
  130.    The following sequences are sent for cursor keys with the <SHIFT> qualifier.
  131.  
  132.          <UP>     CSI T
  133.          <DOWN>   CSI S
  134.          <RIGHT>  CSI sp @
  135.          <LEFT>   CSI sp A
  136.  
  137.             Where CSI is "<ESC> [" or hexadecimal 9B and <sp> is a space
  138.          character.
  139.  
  140.  
  141.   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  142.  
  143.  
  144. Terminus 2.0a
  145. -------------
  146.    As expected, there were some bugs remaining in the initial release of
  147. Terminus.  This version is primarily a maintenance release to repair those
  148. problems, but it does incorporate several changes and additions which are
  149. sectioned and titled below.
  150.  
  151.  
  152. Bug fixes
  153. ---------
  154. - ReqChange is now working.
  155. - Entry macros requester no longer opens without a script being present.
  156. - Now closes review buffer if it is cleared while open.
  157. - [MISC][RESET TERMINAL][X] now resets the foreground/backround pens.
  158. - Palette requester now changes screens when menu pens are changed.
  159. - Prescroll should work with ANSI controls in data stream now.
  160. - Now forces non-interleaved bitmaps with non-AGA machines and no fast ram.
  161. - No longer disables 16 color screens on AGA machines without fast ram.
  162. - VTOpts requester no longer resets column size and font.
  163. - Sprite horizontal offset fixed.
  164. - <ESC>, <BS> and <DEL> keys send appropriate characters in VT-220.
  165. - COLOR and CUSTOM palettes should work properly with VT-xx now.
  166. - Predefined script variables were not passing a result back to ARexx.
  167. - Line wraps with double width characters in VT-xx should work correctly now.
  168. - [MISC][PRINTER ?][P] no longer prints contents of screen at close.
  169. - No longer gurus after posting serial port error requester.
  170. - Now keeps the serial port if carrier is present when using OwnDevUnit.
  171. - Deleting and inserting characters at end of chat buffer no longer gurus.
  172. - Smooth scroll should no longer leaves rectangles of the menus behind.
  173. - Phonebook now deletes new entries that don't have any numbers defined.
  174. - [PHONEBOOK][DIAL NUMBER...][j] ignores null entries now.
  175. - Dialer now loads fkey macros when an entry is in auto-record mode.
  176. - Selected files list is now purged when a transfer aborts.
  177. - Can no longer enter an empty string for Boyer-Moore search.
  178. - Script command CALL now working.
  179. - Beefed up checking for unassigned volumes and missing subdirectories.
  180. - Able to clip hidden text in the review buffer now.
  181. - CURPALETTE is working now.
  182. - Fixed syntax error in palette definitions.
  183. - INVLINE no longer interfered by cursor.
  184. - ZMODEM window problem fixed.
  185.  
  186.  
  187. Modem config script
  188. -------------------
  189.    The automatically launched configuration script apparently has caused
  190. a lot of confusion that I had not been prepared for.  Evidently, no amount
  191. of changes or amplified warnings will be sufficient to prevent future
  192. problems, so Terminus will no longer start this script by itself.  The
  193. script has also been renamed as "ModemConfig.scp" and has had some minor
  194. changes to it's opening text to better explain the objective of that
  195. script.
  196.  
  197.    Please accept my apologies for any grief this script may have caused
  198. you. 
  199.  
  200.  
  201. Display changes
  202. ---------------
  203.    If you are using AmigaDOS 2.x and have created any console definition
  204. files with the initial release you will need to edit those files to delete
  205. the DISPID and DISPLAY commands in them prior to running this release of 
  206. Terminus.  After making those deletions you can load each one and adjust
  207. the appropriate parameters and save them out again.
  208.  
  209.    These changes were made necessary due to the major addition in this
  210. version of a screen mode requester for WB2.x.  You will need the V38
  211. release of asl.library (included with WB2.1) or ReqTools in order to use
  212. this version of Terminus.
  213.  
  214.    The DISPID command has been reassigned as a keyword for use in the
  215. DISPLAY command.  The synatx for DISPLAY has been changed as well.  It
  216. now has two syntax modes, one for WB1.3 and the other for WB2.x.  The
  217. command now works as follows:
  218.  
  219.  
  220.    1.3 DISPLAY
  221.    -----------
  222.    DISPLAY [ = { WORKBENCH | [ILACE] { 2 | 4 | 8 | 16 } COLOR } rows cols ]
  223.  
  224.       The console requester and DISPLAY command is unchanged for use with
  225.    AmigaDOS 1.3, continue to use as before.
  226.  
  227.  
  228.    2.x DISPLAY
  229.    -----------
  230.    DISPLAY [ = { WORKBENCH | DISPID val { 2 | 4 | 8 | 16 } COLOR } rows cols ]
  231.  
  232.       With AmigaDOS 2.x the console requester removes the SCREEN cycle gadget
  233.    and the INTERLACE check gadget and replaces them with a screen mode pair of
  234.    gadgets that are much like the font and definition file gadget sets.
  235.  
  236.       Terminus adds a private screen mode to the list of available modes for
  237.    the purpose of selecting the Workbench (or active public) screen for opening
  238.    it's display on.  This mode is not global, it will not be seen by any other
  239.    application that accesses the display modes list.
  240.  
  241.       While in the screen mode requester you may select any combination of
  242.    display mode and screen depth.  However, once you close the requester 
  243.    after making your choice, Terminus will adjust the screen depth according
  244.    to which palette is in use at the time you make your screen mode selection.
  245.  
  246.       To recap, the following depths are allowed for each palette:
  247.  
  248.          COLOR       2, 4, 8, 16 (and 32 with AGA systems).
  249.          CUSTOM      2, 4 and 8.
  250.          MONO        2, 4 and 8.
  251.          WORKBENCH   n/a.
  252.  
  253.  
  254. Inactive window indicator
  255. -------------------------
  256.    The borderless display has no visual indication that the window is active
  257. or inactive if you're not using the fast (sprite) cursor.  This has been
  258. changed so that the status line only displays the session name, timer and
  259. clock when the window is inactive.
  260.  
  261.  
  262. Border blank control
  263. --------------------
  264.    {GENERAL}{BORDER BLANKER}{B} enables/disables border blanking with ECS and
  265. AGA based machines on custom screens.
  266.  
  267.  
  268. Mouse functions control
  269. -----------------------
  270.    {GENERAL}{MOUSE FUNCTIONS}{S} enables/disables the clipping, ANSI mouse
  271. and character mouse operations available in Terminus to prevent interference
  272. with alternate utilities that access those sequences.
  273.  
  274.  
  275. Emulation changes
  276. -----------------
  277.    The Amiga and IBM (COLOR/MONO) emulations have been "relaxed" a bit to
  278. allow for ANSI sequences that are not really part of those two emulations.
  279. This was made necessary to accomodate those BBS' whose system and utilities
  280. depend on non-standard sequences being present.
  281.  
  282.  
  283. VT-220 changes/additions
  284. ------------------------
  285.    The VT-220 emulation has been enhanced to include the generation of
  286. "meta" keys.  The characters a-z and A-Z when used in conjunction with the
  287. <ALT> qualifier will now send that character prefixed with an <ESC>
  288. character.
  289.  
  290.    The <ESC>, <BS> and <DEL> keys now send the appropriate 7 bit character,
  291. not the 8 bit sequence they were sending previously.
  292.  
  293.    The following numeric keypad keys send VT-220 edit functions when used with
  294. the <SHIFT> qualifier:
  295.  
  296.    <N7> - Find    <N8> - Insert Here   <N9> - Remove
  297.    <N4> - Select  <N5> - Prev Screen   <N6> - Next Screen
  298.  
  299.  
  300. OwnDevUnit changes/additions
  301. ----------------------------
  302.    Terminus now ignores requests for the device/unit that it currently owns
  303. while carrier is present.
  304.  
  305.    A new option, {PORT}{ODU NOTIFY}{N} (ODUNOTIFY), when active, enables
  306. Terminus to allow for device/unit requests.  When inactive it will ignore
  307. all requests.
  308.  
  309.  
  310. Chat buffer changes
  311. -------------------
  312.    Chat area can now be set to a one line chat buffer.  Also, the chat
  313. buffer can be toggled via <RAMIGA><SHIFT><G> now.
  314.  
  315.  
  316. Phonebook/dialer changes
  317. ------------------------
  318.    The phonebook will no longer allow the creation of entries that don't
  319. have at least one phonenumber defined.  The number dial mode of starting
  320. the dialer will also ignore a null entry as well.
  321.  
  322.    A problem showed up with the way macros are stored for an entry that
  323. has been fixed.  Macro definitions need to be at the top of a login
  324. script, but there was a situation where they would be appended to the
  325. end of the script if the script was created via recorder prior to defining
  326. any macros.  Now the script is created when the entry is, regardless of
  327. the presence of macros or not.
  328.  
  329.